Wrap refs with defaults in an allOf #1887
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #1844.
According to both the 3.1.0 spec, and the 3.0.2 spec, additional fields on
referenceObjects
are ignored.This PR adds a JsonSchema configuration option,
disableDefaultValues
. JsonSchemaShapeVisitor is updated to wrap any members with a@default
trait applied which target a$ref
with anallOf
so that the default can be handled correctly by OpenAPI when this configuration option is enabled.While JsonSchema's configuration will use this setting by default, it is disabled by default for API Gateway. API Gateway does not support default values anyways, so disabling this option will make
$ref
and top-level definitions consistent by not using defaults in either form.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.